home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / plnk081.zip / pilot-link.0.8.1 / Java / Pdapilot / mail / SignaturePref.java < prev    next >
Encoding:
Java Source  |  1997-08-03  |  539 b   |  24 lines

  1.  
  2. package Pdapilot.mail;
  3.  
  4. import java.io.*;
  5.  
  6. public class SignaturePref extends Pdapilot.Pref {
  7.     public String signature;
  8.  
  9.     public native void unpack(byte[] data);
  10.     public native byte[] pack();
  11.         
  12.         public SignaturePref() {
  13.             super(null, new Pdapilot.Char4("mail"), 3, 1, true);
  14.         }
  15.         
  16.         public SignaturePref(byte[] contents, Pdapilot.Char4 creator, int id, int version, boolean backup) {
  17.             super(contents, creator, id, version, backup);
  18.         }
  19.         
  20.         public String describe() {
  21.             return "signature='"+signature+"', "+super.describe();
  22.         }
  23. }
  24.